[TOOLS] Remove some dead code.
authorSteven Smith <ssmith@xensource.com>
Fri, 1 Dec 2006 12:09:10 +0000 (12:09 +0000)
committerSteven Smith <ssmith@xensource.com>
Fri, 1 Dec 2006 12:09:10 +0000 (12:09 +0000)
Signed-off-by: Steven Smith <sos22@cam.ac.uk>
tools/python/xen/xend/image.py

index aeff0f070200f74eceebe940dd5c002122eb9101..8d2aab1836db2f137348b60fb309f1be66df91c7 100644 (file)
@@ -199,13 +199,6 @@ class LinuxImageHandler(ImageHandler):
                               ramdisk        = self.ramdisk,
                               features       = self.vm.getFeatures())
 
-    def destroy(self):
-        if not self.pid:
-            return
-        os.kill(self.pid, signal.SIGKILL)
-        os.waitpid(self.pid, 0)
-        self.pid = 0
-
 class PPC_LinuxImageHandler(LinuxImageHandler):
 
     ostype = "linux"